home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / linux / atari / source / source.lzh / atari-linux-0.01pl3 / lib / Makefile < prev    next >
Encoding:
Makefile  |  1994-06-05  |  587 b   |  28 lines

  1. # Makefile for 680x0 Linux lib source directory
  2. #
  3. # Copyright 1993 by Hamish Macdonald
  4. #
  5. # This file is subject to the terms and conditions of the GNU General Public
  6. # License.  See the file "README.legal" in the main directory of this archive
  7. # for more details.
  8.  
  9.  
  10. include ../MakeVars
  11.  
  12. OBJS  = ctype.o _exit.o open.o close.o errno.o write.o dup.o setsid.o \
  13.     execve.o wait.o string.o bcopy.o
  14.  
  15. lib.a: $(OBJS)
  16.     $(AR) rcs lib.a $(OBJS)
  17.     sync
  18.  
  19. dep:
  20.     $(CPP) -M $(INCFLAGS) *.c > .depend
  21.  
  22. #
  23. # include a dependency file if one exists
  24. #
  25. ifeq (.depend,$(wildcard .depend))
  26. include .depend
  27. endif
  28.